.row.gy-4 {
    position: relative;
}

.footer__global {
    position: absolute;
    bottom: 0;
    height: 20px;
}

.footer__global-link {
    display: flex;
    align-items: center;
    height: 20px;
    width: max-content;
    color: black;
    font-weight: 300;
    line-height: 15px;
}

.footer__global-link::before {
    content: '';
    background-image: url('../fonts/Planet.svg');
    width: 20px;
    height: 20px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 8px;
}

.footer__global-link::after {
    content: '';
    background-image: url('../fonts/arrow-right_link.svg');
    width: 22px;
    height: 22px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 8px;

}

@media screen and (max-width: 767px) {
    .footer__global {
        position: relative;
    }
}